makefile 简单例子

out : a.o me.o
	cc -o out a.o me.o

a.o : a.c me.h
	cc -c a.c me.h

me.o : me.c
	cc -c me.c

clean :
	rm -f *.o